audio albums on mobile
Using Jamroom
What skin are you using?
<div class="block_content profilebio">
<div class="col9 last profilemusic">
{* Latest Music and Latest Videos Row *}
{if $profile_jrAudio_item_count > 0 || $profile_jrVideo_item_count > 0}
<div class="row">
<div class="{if $profile_jrVideo_item_count > 0}col6{else}col12 last{/if}">
<div class="block">
{jrCore_include template="profile_index_music.tpl"}
</div>
</div>
<div class="{if $profile_jrAudio_item_count > 0}col6{else}col12 last{/if}">
<div class="block">
{jrCore_include template="profile_index_video.tpl"}
</div>
</div>
</div>
{/if}
{if jrCore_module_is_active('jrCombinedVideo')}
{jrCombinedVideo_get_active_modules assign="mods"}
{if strlen($mods) > 0}
{jrSeamless_list modules=$mods order_by="_created desc" limit=10 template=$v_tpl}
{/if}
{else}
{jrCore_list module="jrVideo" order_by="_created desc" limit=10 template=$v_tpl}
{/if}
{if jrCore_module_is_active('jrCombinedVideo')}
{jrCombinedVideo_get_active_modules assign="mods"}
{if strlen($mods) > 0}
{jrSeamless_list modules=$mods order_by="_created desc" profile_id=$profile_id limit=10 template=$v_tpl}
{/if}
{else}
{jrCore_list module="jrVideo" order_by="_created desc" profile_id=$profile_id limit=10 template=$v_tpl}
{/if}